iT邦幫忙

2022 iThome 鐵人賽

DAY 27
0
AI & Data

了解Data Science系列 第 27

Python Matplotlib part 2

  • 分享至 

  • xImage
  •  

seaborn
seaborn為python繪圖函式庫
以matplotlib為基礎,是Matplotlib的進階版,可以更加快速,語法更簡潔的繪製出圖形
接下來用seaborn內建資料庫做示範

import matplotlib
matplotlib.use('TkAgg')#
import seaborn as sns
import matplotlib.pyplot as plt
import pandas as pd

taxis = sns.load_dataset("taxis")
taxis['dropoff'] = pd.to_datetime(taxis['dropoff'], errors='coerce')
taxis['pickup'] = pd.to_datetime(taxis['pickup'], errors='coerce')
taxis['handling_time'] = (taxis['dropoff'] - taxis['pickup']).dt.total_seconds()
print(taxis['handling_time'])
sns.relplot(x="handling_time", y="distance",hue="total", data=taxis)
plt.show()

Output
https://ithelp.ithome.com.tw/upload/images/20221012/20151606srrCXK8ytF.png


上一篇
Python Matplotlib part1
下一篇
Python Matplotlib part 3
系列文
了解Data Science30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言